tkinter window size position

26

# Change window_name to the name of the window object, i.e. root
window_name.geometry("500x500")
# To ensure widgets resize:
widget_name.pack(fill="both", expand=True)
window = Tk()
#set window size
window.geometry("widthxheight")

Comments

Submit
0 Comments